home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / MPW Related / Animated Cursors / CursWindTkl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-14  |  912 b   |  34 lines  |  [TEXT/MPS ]

  1. #ifndef _curswindtkl_
  2. #define _curswindtkl_
  3. /******************************************************************************\
  4. * Header Files
  5. \******************************************************************************/
  6.  
  7. #ifndef __EVENTS__
  8. #include <Events.h>
  9. #endif
  10.  
  11. #ifndef __WINDOWS__
  12. #include <Windows.h>
  13. #endif
  14.  
  15.  
  16. /******************************************************************************\
  17. * Constants & Macros
  18. \******************************************************************************/
  19.  
  20. #define cursWindKind 8 //WindowKind of Cursor window
  21.  
  22.  
  23. /******************************************************************************\
  24. * Function Prototypes
  25. \******************************************************************************/
  26.  
  27. WindowPtr CreateCursWind (void);
  28. void      DrawCursWind (WindowPtr);
  29. void      ContentCursWind (EventRecord *, WindowPtr);
  30. void      CloseCursWind (WindowPtr);
  31.  
  32.  
  33. #endif
  34.